home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Swimwear Illustrated
/
Swimwear Illustrated.iso
/
mac
/
MAIN8
/
MINDY8.DIR
/
00026_Script_26
< prev
next >
Wrap
Text File
|
1996-02-22
|
660b
|
37 lines
on startmovie
global spplace
put 50 into spplace
end startmovie
on getroll
repeat with x = 6 to 9
if rollover(x) then exit repeat
end repeat
if rollover(x) then return x
else return 50
end if
end getroll
on rollme
global spplace
if not soundbusy(1) then
sound stop 1
sound playfile 1, "mindy.aif"
end if
put getroll() into spplace
if spplace <> 50 then
repeat with group = 6 to 9
SET the VISIBLE OF sprite group+4 to false
end repeat
SET the VISIBLE OF sprite spplace+4 to true
else
repeat with group = 6 to 9
SET the VISIBLE OF sprite group+4 to false
end repeat
end if
UPDATESTAGE
go loop
end rollme